今天是30天程式語言研究的第二十二天,由於資料庫開發的部分我是負責前端所以想說順便多練習一下其他開發前端的語言,就選擇了javascript當第二門語言。
網址:https://www.youtube.com/watch?v=yZwlW5INhgk&ab_channel=GrandmaCan-%E6%88%91%E9%98%BF%E5%AC%A4%E9%83%BD%E6%9C%83
今天主要是如何使用字串和字串用法
筆記:
var phrase ="hello " Mr.White"; // \可以把特殊字元顯現出來
document.write(phrase); //顯示hello" Mr.White
//字串相加
var phrase1 = "hello Mr.White";
var text = "哈哈";
document.write(phrase1 + text + "嘿嘿");
document.write(phrase1.length);//字串長度
document.write(phrase1.toUpperCase());//轉大寫
document.write(phrase1.toLowerCase());//轉小寫
document.write(phrase1.charAt(1));//回傳第1位 e
document.write(phrase1.indexOf("h"));//回傳括號內字元在地幾位,內有回傳-1,兩個回傳第一個出現的
document.write(phrase1.substring(2,10));//回傳2~10位元內容,不含第10位 llo Mr.W